diff options
| author | real-zephex <[email protected]> | 2024-04-18 21:43:02 +0530 |
|---|---|---|
| committer | real-zephex <[email protected]> | 2024-04-18 21:43:02 +0530 |
| commit | ec888b9bec997456368d03579e569929f3745307 (patch) | |
| tree | 0932acf009654212c4fe4663858482cd22ab7bd8 /src/app/manga/[title]/[id]/page.jsx | |
| parent | minor fixes (diff) | |
| download | dramalama-ec888b9bec997456368d03579e569929f3745307.tar.xz dramalama-ec888b9bec997456368d03579e569929f3745307.zip | |
feature added: tracker for mangas
Diffstat (limited to 'src/app/manga/[title]/[id]/page.jsx')
| -rw-r--r-- | src/app/manga/[title]/[id]/page.jsx | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/app/manga/[title]/[id]/page.jsx b/src/app/manga/[title]/[id]/page.jsx index bbf1647..d743f4d 100644 --- a/src/app/manga/[title]/[id]/page.jsx +++ b/src/app/manga/[title]/[id]/page.jsx @@ -3,10 +3,7 @@ import Image from "next/image"; import Buttons from "./buttons"; import { redirect } from "next/navigation"; import { FaStar } from "react-icons/fa"; -import CurrentReading from "./[read]/currentReading"; -import PreFetchChaterLinks from "../../cacher"; - -// This page displays the information regarding the manga or manhwa which the user selected on the previous page. +import { PreFetchChaterLinks } from "../../cacher"; export default async function MangaInfo({ params }) { const id = params.id; @@ -117,7 +114,6 @@ export default async function MangaInfo({ params }) { ))} </div> </div> - <CurrentReading /> <div className={styles.Chapters}> <p className={styles.ChapterTitle}> Chapters & Volumes |